29c6ad3aada00f324995ab137259de2f39e25813,Net2Plan-Examples/src/main/java/com/net2plan/examples/general/offline/nfv/Offline_nfvPlacementILP_v1.java,Offline_nfvPlacementILP_v1,executeAlgorithm,#NetPlan#Map#Map#,52

Before Change


		op.setInputParameter("c_f", nfv_cost , "row"); /* for each NFV type, its cost */
		op.setInputParameter("cpu_f", nfv_cpu , "row"); /* for each NFV type, its CPU */
		op.setInputParameter("ram_f", nfv_ram , "row"); /* for each NFV type, its RAM */
		op.setInputParameter("HD_f", nfv_hd , "row"); /* for each NFV type, its HD */
		op.setInputParameter("cap_f", nfv_cap , "row"); /* for each NFV type, its capacity */
		op.setInputParameter("cpu_n", cpu_n , "row"); /* for each node, CPU capacity  */
		op.setInputParameter("ram_n", ram_n , "row"); /* for each node, RAM capacity  */

After Change


		op.setInputParameter("cap_f", nfvCap_f , "row"); /* for each NFV type, its capacity */
		op.setInputParameter("cpu_n", cpu_n , "row"); /* for each node, CPU capacity  */
		op.setInputParameter("ram_n", ram_n , "row"); /* for each node, RAM capacity  */
		op.setInputParameter("hardDisk_n", hardDisk_n , "row"); /* for each node, HD capacity  */
		
		/* Write the problem formulations */
		if (optimizationTarget.getString ().equals ("min-total-cost"))